home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / stdio.lint,v < prev    next >
Text File  |  1988-07-27  |  2KB  |  86 lines

  1. head     1.3;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @@;
  6.  
  7.  
  8. 1.3
  9. date     88.07.27.18.09.07;  author ouster;  state Exp;
  10. branches ;
  11. next     1.2;
  12.  
  13. 1.2
  14. date     88.07.27.18.06.29;  author ouster;  state Exp;
  15. branches ;
  16. next     1.1;
  17.  
  18. 1.1
  19. date     88.07.25.14.46.24;  author ouster;  state Exp;
  20. branches ;
  21. next     ;
  22.  
  23.  
  24. desc
  25. @@
  26.  
  27.  
  28. 1.3
  29. log
  30. @More syntax and lint errors.
  31. @
  32. text
  33. @/*
  34.  * stdio.lint --
  35.  *
  36.  *    This file contains dummy procedure declarations that are
  37.  *    processed when generating a lint library.  They provide
  38.  *    procedure-like definitions for getc and putc.
  39.  *
  40.  * Copyright 1988 Regents of the University of California
  41.  * Permission to use, copy, modify, and distribute this
  42.  * software and its documentation for any purpose and without
  43.  * fee is hereby granted, provided that the above copyright
  44.  * notice appear in all copies.  The University of California
  45.  * makes no representations about the suitability of this
  46.  * software for any purpose.  It is provided "as is" without
  47.  * express or implied warranty.
  48.  *
  49.  * $Header: stdio.lint,v 1.2 88/07/27 18:06:29 ouster Exp $ SPRITE (Berkeley)
  50.  */
  51.  
  52. #include <stdio.h>
  53.  
  54. /* ARGSUSED */
  55. int    getc(stream) FILE *stream; {return 0;}
  56. /* ARGSUSED */
  57. int    putc(c, stream) char c; FILE *stream; {return 0;}
  58. @
  59.  
  60.  
  61. 1.2
  62. log
  63. @Forgot to include stdio.h
  64. @
  65. text
  66. @d17 1
  67. a17 1
  68.  * $Header: stdio.lint,v 1.1 88/07/25 14:46:24 ouster Exp $ SPRITE (Berkeley)
  69. d22 4
  70. a25 2
  71. int    getc(stream) FILE *stream; {return 0}
  72. int    putc(c, stream) char c; FILE *stream; {return 0}
  73. @
  74.  
  75.  
  76. 1.1
  77. log
  78. @Initial revision
  79. @
  80. text
  81. @d17 1
  82. a17 1
  83.  * $Header: proto.h,v 1.2 88/03/11 08:39:40 ouster Exp $ SPRITE (Berkeley)
  84. d19 2
  85. @
  86.